|
In the C++ programming language, a copy constructor is a special constructor for creating a new object as a copy of an existing object. Copy constructors are the standard way of copying objects in C++, as opposed to cloning, and have C++-specific nuances. The first argument of such a constructor is a reference to an object of the same type as is being constructed (const or non-const), which might be followed by parameters of any type (all having default values). Normally the compiler automatically creates a copy constructor for each class (known as an implicit copy constructor) but for special cases the programmer creates the copy constructor, known as a user-defined copy constructor. In such cases, the compiler does not create one. Hence, there is always one copy constructor that is either defined by the user or by the system. A user-defined copy constructor is generally needed when an object owns pointers or non-shareable references, such as to a file, in which case a destructor and an assignment operator should also be written (see Rule of three). == Definition == Copying of objects is achieved by the use of a copy constructor and an assignment operator. A copy constructor has as its first parameter a (possibly const or volatile) reference to its own class type. It can have more arguments, but the rest must have default values associated with them.〔INCITS ISO IEC 14882-2003 12.8.2. ''()''〕 The following would be valid copy constructors for class X :The first one should be used unless there is a good reason to use one of the others. One of the differences between the first and the second is that temporaries can be copied with the first. For example: Another difference between them is the obvious: The X& form of the copy constructor is used when it is necessary to modify the copied object. This is very rare but it can be seen used in the standard library's std::auto_ptr . A reference must be provided:The following are invalid copy constructors (Reason - copy_from_me is not passed as reference) :because the call to those constructors would require a copy as well, which would result in an infinitely recursive call. The following cases may result in a call to a copy constructor: # When an object is returned by value # When an object is passed (to a function) by value as an argument # When an object is thrown # When an object is caught # When an object is placed in a brace-enclosed initializer list These cases are collectively called ''copy-initialization'' and are equivalent to:〔ISO/IEC (2003). ''ISO/IEC 14882:2003(E): Programming Languages - C++ §8.5 Initializers ()'' para. 12〕 T x = a; It is however, not guaranteed that a copy constructor will be called in these cases, because the C++ Standard allows the compiler to optimize the copy away in certain cases, one example being the return value optimization (sometimes referred to as RVO). 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「Copy constructor (C++)」の詳細全文を読む スポンサード リンク
|